home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000061_news@newsmaster….columbia.edu _Sat Jul 12 12:58:14 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA28732
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 12 Jul 1997 12:58:13 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA07551
  7.     for kermit.misc@watsun; Sat, 12 Jul 1997 12:58:13 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: How do I tell Kermit to ignore NO DIALTONE?
  12. Date: 12 Jul 1997 16:58:12 GMT
  13. Organization: Columbia University
  14. Lines: 33
  15. Message-ID: <5q8d34$e4t$1@apakabar.cc.columbia.edu>
  16. References: <5q81jl$1qd@bhars12c.bnr.co.uk>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7322
  19.  
  20. In article <5q81jl$1qd@bhars12c.bnr.co.uk>, David Wright <dww@bnr.co.uk> wrote:
  21. : I have a BT ISDN 2 line, which I use via an Ascend box, giving 1 ethernet
  22. : plus 2 analogue telephone ports.   I get no dial tone on either line.
  23. : This is no problem for WinFAX and HyperTerminal as they have a config
  24. : setting to ignore dial tone.  But I can't find how to get Kermit to work
  25. : with this.  It insists on waiting for dialtone before dialling, so fails
  26. : 'NO DIALTONE'.   How do I tell it to just go ahead?
  27. You'll need to look at your modem manual.  If it's a Hayes compatible (i.e.
  28. uses the AT command set), then it's probably a matter of changing the "X"
  29. value in the init string.  Most Kermit init strings use X4, in order to get
  30. the widest possible selection of result codes.  In many modems, X3 is used
  31. to select "blind dialing" (i.e. without waiting for dialtone), but this also
  32. sacrifices the ability to get a BUSY response, and therefore to redial
  33. automatically if the line is busy.  Hopefully your modem has finer-grained
  34. selections.
  35.  
  36. A good way to change the X value in the init string is, after you set your
  37. modem type (normally in k95custom.ini):
  38.  
  39.   set modem type xxxx
  40.   set modem command init \freplace(\v(m_init),X4,X3)
  41.  
  42. This assumes your modem type is "xxxx", and its init string contains X4.
  43.  
  44. : I can find nothing about this in the FAQ; perhaps it should be added.
  45. Good idea.  The same question often comes up with regard to PBXs that have
  46. "funny dialtones".  We'll probably add an explicit selection for this in a
  47. future release.
  48.  
  49. - Frank